This function returns the directory part of the indicated file name, which normally is the same as the path except for the final backslash.
filename_dir(fname);
Argument | Description |
---|---|
fname | The file to use. |
String
dir = filename_dir("Test.ini");
The above code gets the directory (as a string) of the specified file.